home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
fg
/
fgl402e
/
expas.arj
/
TEMP
/
15-08.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-01-20
|
353b
|
18 lines
program main;
uses fgmain, fgmisc;
begin
fg_initpm;
fg_musicb('T150 L8 EDCDEEE P DDD P EGG P EDCDEEE L16 P L8 EDDEDC$',1);
fg_waitkey;
fg_suspend;
writeln('Music suspended. Press any key to resume.');
fg_waitkey;
fg_resume;
writeln('Music resumed.');
while (fg_playing = 1) do;
writeln('Music finished.');
end.